home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms_w / pboy190.zip / SOURCE.ZIP / STRUCTS.H < prev    next >
C/C++ Source or Header  |  1994-03-07  |  2KB  |  61 lines

  1. /*      structs.h -- Basic data structures
  2.     This file is part of Paperboy, an offline mail/newsreader for Windows
  3.     Copyright (C) 1994  Michael H. Vartanian
  4.         vart@eniac.seas.upenn.edu
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. /* Basic data structures for Paperboy SOUP DLL */
  21.  
  22. #ifndef HSTRUCTS
  23. #define HSTRUCTS
  24.  
  25. #include <time.h>
  26.  
  27. #define MSGMAGIC    0xDEDEDEDEL
  28. #define AREAMAGIC    0xBABABABAL
  29.  
  30. struct lltext
  31. {
  32.     struct lltext * next;    /* Pointer to next element in linked-list */
  33.     char * text;            /* Line of text */
  34. };
  35.  
  36.  
  37.  
  38. struct llmsg
  39. {
  40.     long magic;                /* Sanity check magic number */
  41.     struct llmsg * next;    /* Pointer to next element in linked-list */
  42.     long start;                /* Position in file of start */
  43.     long length;            /* Length of message */
  44.     char * subject;            /* Subject of message */
  45.     char * author;            /* Author of message */
  46.     char * date;            /* Date message was posted */
  47.     time_t idate;            /* Date in machine form */
  48. };
  49.  
  50. struct llareas
  51. {
  52.     long magic;                /* Sanity check magic number */
  53.     struct llareas * next;    /* Pointer to next element in linked-list */
  54.     char * name;            /* Name of area */
  55.     char * prefix;            /* Name of .MSG file containing messages */
  56.     char encoding[4];        /* Encoding of message area */
  57.     char * desc;            /* Description of message areas */
  58.     struct llmsg * head;        /* Top of messages list for this area */
  59. };
  60. #endif
  61.